/* v2.0 | 20110126
  http://meyerweb.com/eric/tools/css/reset/ 
  License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/**==================== 主样式文件，整站调用 ====================*/
/** 
 * @max-width >= 1366px 模块间距20px
 * @max-width <= 1366px 模块间距20px
 * @max-width <= 1024px 模块间距15px
 * @max-width <= 768px 模块间距10px
 * @max-width <= 480px 模块间距5px
 */

/* ==================== 通用全局样式开始 ==================== */
/* 常用标签样式 */
html{
    font-family: monospace;
    font-size: 15px;
}
@media (max-width: 1024px) {
    html{
        font-size: 14px;
    }
}
@media (max-width: 768px) {
    html{
        font-size: 13px;
    }
}
@media (max-width: 480px) {
    html{
        font-size: 12px;
    }
}
body{
    color: #333;
    background: #eee;
    overflow-x: hidden;
}
/* 标题 */
h1{
    text-indent: 0;
    margin: 1.5rem auto;
    font-size: 1.5rem;
    font-weight: bold;
}
h2{
    text-indent: 0;
    margin: 1.4rem auto;
    font-size: 1.4rem;
    font-weight: bold;
}
h3{
    text-indent: 0;
    margin: 1.3rem auto;
    font-size: 1.3rem;
    font-weight: bold;
}
h4{
    text-indent: 0;
    margin: 1.2rem auto;
    font-size: 1.2rem;
    font-weight: bold;
}
h5{
    text-indent: 0;
    margin: 1.1rem auto;
    font-size: 1.1rem;
    font-weight: bold;
}
h6{
    text-indent: 0;
    margin: 1rem auto;
    font-size: 1rem;
    font-weight: bold;
}
p{
    margin: 1rem auto;
    line-height: 2.2rem;
    font-size:16px;
    text-align: justify;
}
strong{
    font-weight: bold;
}
em{
    font-style: italic;
}
a{
    font-weight: normal;
    color: #24a0f0;
    text-decoration: none;
}
ul, ol{
    text-indent: 0;
    list-style-position: inside;
    list-style-type: disc;
    margin: 1rem auto;
    font-size: 1rem;
}
ol{
    list-style-type: decimal;
}
ol ol, ol ul, ul ol, ul ul {
    margin: .6em auto;
}
li{
    margin-left: 1.5em;
    line-height: 1.5em;
    font-size: 1rem;
}
img{
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}
table{
    width: 100%;
    margin: 1.2em auto;
}
tr:nth-child(odd){
    background:#fff; 
}
tr:nth-child(even){
    background: #fbfbfb;
}
th{
    padding: 3px 5px;
    border: 1px solid #c9c9c9;
    font-size: .9em;
    font-weight: 700;
    text-align: center;
    vertical-align: middle;
    background: #d2eeff; 
    border-collapse: collapse;
}
td{
    padding: 3px 5px;
    border: 1px solid #c9c9c9 ;
    font-size: 1rem;
    vertical-align: middle;
}
blockquote{
    text-indent: 0;
    position: relative;
    margin: 1.2em auto;
    padding: 1.5rem 3rem;
    border-radius: 5px;
    font-size: 0.9rem;
    line-height: 1.2rem;
    color: #999;
    background: #fafafa;
}
blockquote::before{
    content: "\f10d";
    text-indent: 0;
    font-weight: 900;
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 18px;
    color: #888;
}
blockquote::after{
    content: "\f10e";
    text-indent: 0;
    font-weight: 900;
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 18px;
    color: #888;
}
blockquote p:first-child, blockquote ol:first-child, blockquote ul:first-child {
    margin-top: 5px;
}
blockquote p:last-child, blockquote ol:last-child, blockquote ul:last-child {
    margin-bottom: 5px;
}

/* 代码高亮样式 */
pre{
    text-indent: 0;
    margin: 1.2em auto;
    /* padding: 1rem; */
    border-radius: 5px;
    /* color: #e6db74;
    background-color: #23241f; */
}

pre.highlight{
    text-indent: 0;
    margin: 1.2em auto;
}
pre.highlight code {
    display: block;
    max-height: 30rem;
    font-family: Consolas, Monaco, monospace;
    overflow-y: auto;
    overflow-x: hidden;
}
pre.highlight code.hljs {
    display: block;
    padding: 1rem;
    overflow-x: auto;
}
pre.highlight code.hljs::-webkit-scrollbar{ /* 整个滚动条 */
    display: none;
    width: 5px; /* 垂直滚动条高度 */
    height: 5px; /* 水平滚动条宽度 */
}
pre.highlight code.hljs::-webkit-scrollbar-track{ /* 滚动条轨道 */
    border: 1px solid #999;
    border-radius: 10px;
    background: royalblue;
}
pre.highlight code.hljs::-webkit-scrollbar-track-piece{ /* 滚动条没有滑块的轨道部分 */
    background: #eee; /* 该颜色会覆盖 -webkit-scrollbar-track 中的背景色*/
}
pre.highlight code.hljs::-webkit-scrollbar-thumb{ /* 滚动条上的滚动滑块 */
    border-radius: 10px;
    background: #999;
}
pre.highlight code.hljs::-webkit-scrollbar-thumb:hover{
    background: #aaa;
}
pre.highlight code.hljs::-webkit-scrollbar-corner{ /* 当同时有垂直滚动条和水平滚动条时交汇的部分 */
    background-color: orange;
}

/* 主题通用类样式 */
.container{
    position: relative;
    max-width: 1200px;
    width: auto;
    padding: 0;
}
.content-wrapper{
    float: left;
    width: 100%;
}
.content{
    position: relative;
    margin-right: 380px;
}
.sidebar{
    float: right;
    width: 360px;
    margin: 0 0 0 -360px;
    overflow: hidden;
}
.module{
    position: relative;
    margin-top: 1.2rem;
}
.thumbnail {
    display: block;
    padding: 0;
    margin: 0 auto;
    line-height: 1rem;
    background-color: #fff;
    border: 0;
    border-radius: 0;
    -webkit-transition: inherit;
    -o-transition: inherit;
    transition: inherit;
}
@media (max-width: 1366px) {
    .container{
        width: calc(100% - 1rem);
    }
    .content{
        margin-right: 340px;
    }
    .sidebar{
        width: 320px;
        margin: 0 0 0 -320px;
    }
    .module{
        margin-top: 1rem;
    }
}
@media (max-width: 1024px) {
    .container{
        width: calc(100% - 0.5rem);
    }
    .content{
        margin-right: 0;
    }
    .sidebar{
        width: 100%;
        margin: 0;
    }
    .module{
        margin-top: 0.8rem;
    }
}
/* 按钮样式 */
.btn{
    outline: none;
    display: inline-block;
    margin-right: 1rem;
    padding: 5px 15px;
    border: 0;
    border-radius: 3px;
    color: #333;
    background-color: #ddd;
}
.btn:hover, .btn:active, .btn:active:hover, .btn:active:focus {
    opacity: 0.8;
}
.btn-default, .btn-default:hover, .btn-default:active, .btn-default:active:hover, .btn-default:active:focus {
    color: #fff;
    background: #24a0f0;
}
.btn-primary, .btn-primary:hover, .btn-primary:active, .btn-primary:active:hover, .btn-primary:active:focus {
    color: #fff;
    background: #ff0000;
}
.btn-green, .btn-green:hover, .btn-green:active, .btn-green:active:hover, .btn-green:active:focus {
    color: #fff;
    background: #00b424;
}
/* 相册样式 */
.gallery{
    margin: 1.2rem auto;
}
.gallery .gallery-item{
    position: relative;
    margin: 0 !important;
    padding: 3px;
    overflow: hidden;
}
.gallery .gallery-icon{
    display: block;
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 66%;
    border: 5px solid #ccc;
    overflow: hidden;
}
.gallery .gallery-item img{
    object-fit: cover;
    transition-duration: .5s;
    position: absolute;
    width: 100%;
    height: 100%;
    border-width: 0 !important;
}
.gallery .gallery-item:hover img{
    transform: scale(1.1);
}
.gallery .gallery-caption{
    margin-top: 5px;
}
/* 视频样式 */
.wp-video{
    margin: 1.2rem auto;
}
/* 视频列表样式 */
.wp-playlist{
    margin: 1.2rem auto !important;
    border-width: 0 !important;
    padding: 0 !important;
}
.wp-playlist-tracks{
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative !important;
    margin-top: 1.2rem !important;
}
.wp-playlist-tracks .wp-playlist-item{
    border-bottom-width: 0;
    margin: 5px 5px 0;
    padding: 0 10px;
    border: 1px solid #eee;
    overflow:hidden;
}
.wp-playlist-tracks .wp-playlist-item:last-child {
    border-bottom: 1px solid #eee;
}
.wp-playlist-light .wp-playlist-playing{
    background-color: #eee !important;
}
.wp-playlist-tracks .wp-playlist-caption{
    text-indent: 0;
    display: block;
    height: 2rem;
    line-height: 2rem;
    font-size: 1rem;
    font-weight: bold;
}
.wp-playlist-tracks .wp-playlist-item-title{
    font-weight: normal;
}
.wp-playlist-tracks .wp-playlist-item-length{
    right: 13px;
    height: 2rem;
    line-height: 2rem;
    font-size: 1rem;
}
@media (max-width: 480px) {
    .wp-playlist-tracks{
        grid-template-columns: 1fr;
    }
}
/* ==================== 通用全局样式结束 ==================== */


/* ==================== 通用头部样式开始 ==================== */
#header{
    z-index: 999999999;
    display: block;
    position: relative;
    width: 100%;
    height: auto;
    margin: 0;
    border: 0;
    padding: 0;
    background: #fff;
}
.nav-fixed #header{
    position: fixed;   /* 导航始终固定在头部 */
    top: 0;
    opacity: 0.9;
}

/* 工具条 */
.top-bar{
    cursor: default;
    width: 100%;
    height: 32px;
    line-height: 32px;
    font-size: 14px;
    color: #fff;
    background: #3c3d3f;
}
.top-bar a{
    margin-left: 10px;
    color: #fff;
    overflow: hidden;
}
.top-bar a:hover{
    color: #24a0f0;
}
/* 滚动公告 */
.announcement-wrap{
    float: left;
    height: 32px;
    max-width: 60%;
}
.top-bar .announcement-list{
    height:20px;
    line-height:20px;
    margin: 6px auto;
    word-break: break-all;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow:hidden;
}
.top-bar .announcement-list i{
    font-size: 1.1rem;
    color: #ff6666;
}
.top-bar .announcement-list li{
    display: block;
    width: 100%;
    height: 20px;
    line-height: 20px;
    margin-left: 0;
    font-size: 15px;
    word-break: break-word;
    word-wrap: break-word;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow:hidden;
}
/* 头部 # 用户登录 */
.top-bar .user-wrap {
    float: right;
    height: 20px;
    line-height: 20px;
    margin: 6px auto;
    overflow: hidden;
}

/* 站点导航 */
.site-nav{
    height: 72px;
    color: #333;
    background: #fff;
}
.site-nav .container{
    height: 100%;
}
.site-nav a{
    display: inline-block;
    color: inherit;
}
.site-nav a:hover{
    text-decoration: none;
    color: #24a0f0;
    opacity: 0.9;
}
.site-nav .mobile-nav-btn {    /* 手机导航 */
    display: none;
}
/* Logo 品牌 */
.site-nav .logo{
    float: left;
	position: relative;
    margin: 0 auto;
    padding: 20px 0;
	font-size: 18px;
	font-weight: bold;
}
.site-nav .logo a{
    max-width: 140px;
    max-height: 32px;
    overflow: hidden;
}
.site-nav .logo img {
    max-width: 140px;
    max-height: 32px;
    overflow: hidden;
}
.site-nav .brand {
    cursor: default;
    float:left;
    height: 32px;
    line-height: 16px;
    margin: 20px 10px;
    padding-left: 10px;
    border-left: #ccc 2px solid;
    font-size: 0.88em;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: #aaa;
    overflow: hidden;
}
/* 搜索按钮 */
.site-nav .search {
    z-index: 999;
    position: absolute;
    right: 0;
    width: 30px;
    margin-left: 20px;
    padding: 20px 0;
    text-align: center;
    overflow: hidden;
}
.site-nav .search-btn {
    font-size: 1.2rem;
    line-height: 32px;
}
/* 导航列表 */
.site-nav .nav-list{
    position: absolute;
    right: 0;
    max-width: calc(100% - 300px);
    margin-left: 10px;
    margin-right: 40px;
    height: 100%;
}
.site-nav .nav-list ul{
    list-style: none;
    height: 72px;
    margin: 0 auto;
    word-break: break-all;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.site-nav .nav-list li{
    list-style: none;
    float: left;
    position: relative;
    height: 72px;
    line-height: 32px;
    margin-left: 25px;
    padding: 20px 0;
    font-size: 1rem;
}
.site-nav .nav-list .menu>li{
    float: none;
    display: inline-block;
}
.site-nav .nav-list li i{
    margin-right: 5px;
    font-size: 0.9rem;
}
.site-nav .menu-item-has-children>.show-sub-menu{
    display: none;
}
.site-nav .nav-list li:hover>.sub-menu{
    display: block;
}
.site-nav .nav-list .sub-menu{    /* 二级目录 */
    z-index: 999;
    display: none;
    position: absolute;
    top: 72px;
    left: -35px;
    width: 140px;
    height: auto;
    margin: 0 auto;
    padding: 5px 0;
    box-shadow: 0 1px 10px rgb(0 0 0 / 15%);
    background: #fff;
    overflow: hidden;
}
.site-nav .nav-list .sub-menu li{
    float: none;
    height: auto;
    line-height: 1;
    margin-left: 0;
    padding: 12px 15px;
}
.site-nav .nav-list .sub-menu li:hover{
    background: #fafafa;
}
/* 彩色条带 */
.color-bar{
    height: 4px;
}
/* 搜索框 */
.search-on .search-box{
    display: block;
}
.search-box{
    z-index: 999;
    display: none;
    position: absolute;
    width: 100%;
    padding: 1.5rem 0;
    box-shadow: 0px 1px 3px #999;
    background: #fff;
    opacity: 0.9;
}
.search-box .search-form{
    display: flex;
    flex-direction: row;
    margin: 0 50px;
    margin-top: 1rem;
}
.search-box .search-form:first-child{
    margin-top: 0;
}
.search-box .search-input{
    outline: none;
    flex-grow: 1;
    width: 100%;
    height: 2.5rem;
    margin: 0 auto;
    padding: 9px 15px;
    border: 1px solid #24A0F0;
}
.search-box .search-submit{
    flex-basis: 100px;
    width: 100%;
    height: 2.5rem;
    line-height: 2.5rem;
    margin: 0 auto;
    border: 1px solid #24A0F0;
    font-size: 1.2rem;
    color: #fff;
    background: #24A0F0;
}
.search-box .search-submit:hover{
    opacity: 0.8;
}
@media (max-width: 768px) {
    /* 顶部工具条 */
    .top-bar{
        text-align: center;
        height: 26px;
    }
    .top-bar .announcement-wrap {
        float: none;
        max-width: 100%;
        height: 26px;
    }
    .top-bar .announcement-list{
        margin: 3px auto;
    }
    .top-bar .user-wrap {
        display: none;
    }
    /* 导航 */
    .site-nav{
        height: 60px;
        font-size: 1rem;
    }
    .site-nav .mobile-nav-btn{
        display: block;
        position: absolute;
        width: 30px;
        line-height: 30px;
        margin: 10px 0;
        font-size: 1.2rem;
        text-align: center;
    }
    .site-nav{
        height: 50px;
    }
    .site-nav .brand{
        display: none;
    }
    .site-nav .logo{
        padding: 14px 0;
    }
    .site-nav .logo a{
        position: absolute;
        margin: auto;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        max-width: 140px;
        max-height: 32px;
    }
    .site-nav .search {
        width: 50px;
        padding: 10px;
    }
    /* 导航列表 */
    .site-nav .nav-list{    /* 撑满全屏，用作遮罩 */
        display: none;
        position: fixed;
        z-index: 999;
        top: 0;
        left: 0;
        width: 100%;
        max-width: 100%;
        height: 100%;
        margin: 0 auto;
    }
    .site-nav .nav-list.actived{
        display: block;
    }
    .site-nav .nav-list .menu>li{
        display: block;
    }
    .site-nav .nav-list .mobile-nav-mask{
        position: absolute;
        top: 0;
        right: 0;
        width: calc(100% - 180px);
        height: 100%;
        margin-left: 180px;
        background: #00000066;
    }
    .site-nav .nav-list ul{
        position: absolute;
        z-index: 999;
        top: 0;
        left: 0;
        float: left;
        height: 100%;
        width: 180px;
        margin: 0;
        padding: 15px 0;
        overflow: hidden;
        background: #293038;
    }
    .site-nav .nav-list li:hover>.sub-menu{
        display: none;
    }
    .site-nav .nav-list li{
        position: relative;
        display: inline-block;
        width: 100%;
        height: auto;
        line-height: 40px;
        margin-left: 0;
        border-bottom: 1px solid #ffffff0a;
        padding: 0 20px;
    }
    .site-nav ul li a{
        width: 100%;
        color: #fff;
    }
    .site-nav .menu-item-has-children>.show-sub-menu{
        display: inline-block;
        position: absolute;
        right: 10px;
        line-height: 30px;
        padding: 5px;
        font-size: 1.5em;
        color: #fff;
    }
    .site-nav ul .menu-item-has-children a{
        width: calc(100% - 30px);
        color: #fff;
    }
    .site-nav .nav-list .sub-menu {
        position: relative;
        top: 0;
        left: -20px;
        width: calc(100% + 40px);
        padding: 0;
        box-shadow: none;
        background: #41474e;
    }
    .site-nav .nav-list .sub-menu li{
        line-height: 40px;
        padding: 0 20px;
    }
    .site-nav .nav-list .sub-menu li:hover{
        background: #526377;
    }
    .search-box{
        padding: 15px 0;
    }
    .search-box .search-form{
        margin: 0 30px;
        margin-top: 1rem;
    }
    .search-box .search-input{
        height: 30px;
        padding: 5px 10px;
    }
    .search-box .search-submit{
        flex-basis: 80px;
        height: 30px;
        line-height: 30px;
    }
}
/* 面包屑导航 */
.breadcrumbs-wrapper{
    cursor: default;
    height: 2.5rem;
    line-height: 2.5rem;
    padding: 0 10px;
    background: #fff;
}
.breadcrumbs-wrapper a{
    text-decoration: none;
    display: inline-block;
    height: 100%;
    font-size: 1rem;
    color: #777;
}
.breadcrumbs-wrapper a:hover{
    color: #24a0f0;
}
.breadcrumbs-wrapper small{
    display: inline-block;
    height: 100%;
    margin: 0 5px;
    font-size: 10px;
    font-weight: bold;
    color: #ccc;
}
/* ==================== 通用头部样式结束 ==================== */


/**==================== 通用尾部样式开始 ====================**/
#footer{
    margin-top: 7px;
    font-size: 0.7rem;
}
#footer li{
    list-style: none;
}
/* 友情链接 */
.friendly-links-wrap{
    text-align: center;
}
.friendly-links{
    text-indent: 0;
    max-height: 2.4rem;
    margin: 0 auto;
    overflow: hidden;
}
.friendly-links label {
    font-size: 0.7rem;
    font-weight: bold;
    color: #555;
}
.friendly-links a {
    font-size: 0.9rem;
    color: #777;
}
.friendly-links a:hover{
    color: #24a0f0;
}
.friendly-links li{
    display: inline-block;
    line-height: 1.2rem;
    margin-left: 5px;
    font-size: 0.9rem;
}
/* 自定义 */
.footer-custom{
    text-indent: 0;
}
.footer-custom a {
    padding: 0 3px;
    font-size: 0.7rem;
}
.footer-custom p{
    line-height: 18px;
    margin: 0 auto;
    font-size: 0.7rem;
    text-align: center;
}
/* 版权所有 */
.copyright{
    text-indent: 0;
}
.copyright a {
    padding: 0 3px;
    font-size: 0.7rem;
}
.copyright p{
    line-height: 18px;
    margin: 0 auto;
    font-size: 0.7rem;
    text-align: center;
}
.copyright img{
    display: inline-block;
    height: 1rem;
    margin-right: 3px;
    width: auto;
}
/* 网站信息 */
.site-info{
    text-indent: 0;
}
.site-info a {
    padding: 0 3px;
    font-size: 0.7rem;
}
.site-info p{
    line-height: 18px;
    margin: 0 auto 15px;
    font-size: 0.7rem;
    text-align: center;
}
@media (max-width: 480px) {
    .site-info i{
        display: none;
    }
    .site-info span{
        display: block;
    }
}

/* 页脚三栏推广模块 */
.footer-brand-lmr{
    cursor: default;
    position: relative;
    width: 100%;
    font-size: 0.8rem;
    color: #fff;
    background: #333;
    overflow: hidden;
}
.footer-brand-lmr p{
    margin: 0 auto;
}
.footer-brand-lmr a{
    color: #fff;
}
.footer-brand-lmr .container{
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    padding: 30px 0;
}
.footer-brand-lmr .container>div{
    flex-basis: 30%;
    position: relative;
}
.footer-brand-lmr .container>div:nth-child(2){
    flex-basis: 40%;
}
/** footer 左侧CSS */
.footer-brand-lmr .left img{
    width: auto;
    height: 30px;
    margin-left: 0;
    margin-bottom: 1rem;
}
.footer-brand-lmr .left p{
    color: #fff;
    font-size: 0.9rem;
    overflow: hidden;
    text-align: justify;
    text-overflow: ellipsis;
    word-break: break-all;
    word-wrap: break-word;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}
/** footer 中间CSS */
.footer-brand-lmr .middle{
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
}
.footer-brand-lmr .middle .qrcode{
    flex-basis: 33%;
    padding: 0 1.5rem;
}
.footer-brand-lmr .middle .qrcode img{
    margin-bottom: 5px;
}
.footer-brand-lmr .middle .qrcode span{
    display: block;
    line-height: 1rem;
    font-size: 0.8rem;
    text-align: center;
    word-break: break-all;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
/** footer 右侧CSS */
.footer-brand-lmr .right h4{
    margin: 0 auto;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    color: #fff;
}
.footer-brand-lmr .right .links{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}
.footer-brand-lmr .right .links a{
    padding: 5px;
    font-size: 1rem;
    word-break: break-all;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
@media(max-width: 1024px){
    .footer-brand-lmr .container{
        gap: 1.5rem;
    }
    .footer-brand-lmr .middle .qrcode {
        flex-basis: 33%;
        padding: 0 0.7rem;
    }
    .footer-brand-lmr .right h4 {
        margin-bottom: 1rem;
    }
}
@media(max-width: 768px){
    .footer-brand-lmr .container{
        gap: 2rem;
    }
    .footer-brand-lmr .left, .footer-brand-lmr .right{
        display: none;
    }
    .footer-brand-lmr .container>div:nth-child(2){
        flex-basis: 70%;
    }
    .footer-brand-lmr .middle{
        gap: 2rem;
    }
    .footer-brand-lmr .middle .qrcode span{
        font-size: 1rem;
        line-height: 1.2rem;
    }
}
@media(max-width: 480px){
    .footer-brand-lmr .container {
        padding: 20px 0;
    }
    .footer-brand-lmr .container>div:nth-child(2){
        flex-basis: 80%;
    }
    .footer-brand-lmr .middle{
        gap: 1rem;
    }
    .footer-brand-lmr .middle .qrcode span{
        font-size: 0.8rem;
        line-height: 1.2rem;
    }
}

/**==================== 通用尾部样式结束 ====================**/


/**==================== 通用组件样式开始 ====================**/

/* 最新文章列表 */
.new-posts-excerpt{
    cursor: default;
    padding: 1rem;
    border-radius: 0;
    background: #fff;
    overflow: hidden;
}
.new-posts-excerpt a{
    text-decoration: none;
    color: #999;
}
.new-posts-excerpt a:hover{
    color: #24a0f0;
}
.new-posts-excerpt .title{
    height: 3rem;
    line-height: 1.5rem;
    font-size: 1.5rem;
    padding: 10px;
    border-bottom: 2px solid #eee;
}
.new-posts-excerpt .title h3{
    max-width: 120px;
    margin: 0;
    font-size: 1.2rem;
    font-weight: normal;
    text-align: left;
    overflow: hidden;
}
.new-posts-excerpt .title .more{
    float: right;
    max-width: 360px;
    font-size: 0.8rem;
    word-break: break-all;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
/* 文章摘要 */
.new-posts-excerpt article{
    width: 100%;
    height: 160px;
    border-bottom: 1px solid #eee;
    overflow: hidden;
}
.new-posts-excerpt article:last-child{
    border-bottom: 0;
}
.new-posts-excerpt .excerpt-text .thumbnail-wrapper{
    display: none;
}
.new-posts-excerpt .excerpt-text .content{
    margin: 0;
}
.new-posts-excerpt .excerpt-ads{
    display: block;
    position: relative;
    min-width: 300px;
    min-height: 60px;
    padding: 1rem;
}
.new-posts-excerpt .excerpt-ads .ads-post-list{
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    max-height: none;
}
.new-posts-excerpt .thumbnail-wrapper{
    float: left;
    position: relative;
    width: 210px;
    height: 130px;
    margin: 15px;
    border: 0;
    padding: 0;
    background: none;
    overflow: hidden;
}
.new-posts-excerpt .thumbnail-wrapper img{
    object-fit: cover;
    transition: inherit;
    transition-duration: 0.5s;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 0;
    border: 0;
}
.new-posts-excerpt .thumbnail-wrapper:hover img{
    transform: scale(1.2);
}
.new-posts-excerpt .content{
    position: relative;
    margin: 15px 15px 15px 240px;
    height: 130px;
    padding: 5px 0;
    overflow: hidden;
}
.new-posts-excerpt .content h2{
    line-height: 20px;
    margin: 0 auto;
    font-size: 1.2rem;
    font-weight: 500;
    color: #333;
    word-break: break-all;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.new-posts-excerpt .content a:hover h2{
    color: inherit;
}
.new-posts-excerpt .thumbnail-wrapper .tag-category{
    z-index: 999;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    padding: 3px 9px;
    border-bottom-right-radius: 5px;
    font-size: 1rem;
    color: #fff !important;
    background: #24a0f0;
}
.new-posts-excerpt .content .tag-more{
    float: right;
    transition-duration: .5s;
    position: absolute;
    right: 0;
    padding: 3px 15px;
    font-size: 0.9rem;
    line-height: 1.2rem;
    color: #fff;
    height: 24px;
    border-radius: 3px 0 0 3px;
    background: #24a0f0;
    opacity: 0;
}
.new-posts-excerpt .content .tag-more:hover{
    opacity: 1;
}
.new-posts-excerpt .content .tag-icon{
    display: block;
    position: absolute;
    transform: rotate(36deg);
    transform-origin: 0% 0%;
    right: -40px;
    top: -20px;
    width: 100px;
    height: 20px;
    line-height: 20px;
    padding: 0;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
}
.new-posts-excerpt .content .tag-sticky{
    background: #f44336;
}
.new-posts-excerpt .content .tag-new{
    background: #00b424;
}
.new-posts-excerpt .content .meta{
    font-size: 0.8rem;
    color: #aaa;
    word-break: break-all;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.new-posts-excerpt .content .meta span{
    margin-right: 1.2rem;
}
.new-posts-excerpt .content .meta a{
    color: #aaa;
    font-size: 0.8rem;
}
.new-posts-excerpt .content p{
    margin: 0;
    margin-top: 5px;
}
.new-posts-excerpt .content .desc{
    height: 3rem;
    font-size: 0.8rem;
    line-height: 1rem;
    color: #999;
    text-align: justify;
    text-overflow: ellipsis;
    word-wrap: break-word;
    overflow: hidden;
    display: -webkit-box; 
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;     
}
.new-posts-excerpt .content .tags{
    position: absolute;
    bottom: 0;
    overflow: hidden;
}
.new-posts-excerpt .content .tags a{
    float: left;
    transition-duration: .5s;
    margin-right: 10px;
    padding: 0 9px;
    border: 0;
    font-size: 0.8rem;
    color: #aaa;
    background: #ddeeff;
    border-radius: 3px;
}
.new-posts-excerpt .content .tags a:hover{
    color: #fff !important;
    background: #4bb8ff;
    opacity: 0.6;
}
@media (max-width: 768px){
    .new-posts-excerpt{
        padding: 0 10px;
    }
    /* 文章摘要 */
    .new-posts-excerpt article{
        height: 120px;
    }
    .new-posts-excerpt .thumbnail-wrapper{
        width: 160px;
        height: 100px;
        margin: 10px;
    }
    .new-posts-excerpt .content{
        margin: 10px 10px 10px 180px;
        height: 100px;
    }
    .new-posts-excerpt .content .tag-icon {
        right: -32px;
        top: -15px;
        width: 80px;
        height: 18px;
        line-height: 18px;
        font-size: 0.8rem;
    }
    .new-posts-excerpt .content .tag-more{
        bottom: 0;
    }
    .new-posts-excerpt .content .meta{
        position: absolute;
        width: 100%;
        bottom: 5px;
    }
    .new-posts-excerpt .content .desc{
        margin-top: 10px;
    }
    .new-posts-excerpt .content .tags{
        display: none;
    }
}
@media (max-width: 480px){
    .new-posts-excerpt article{
        height: 84px;
    }
    .new-posts-excerpt .thumbnail-wrapper{
        width: 120px;
        height: 70px;
        margin: 7px;
    }
    .new-posts-excerpt .content{
        margin: 7px 7px 7px 130px;
        height: 70px;
    }
    .new-posts-excerpt .content h2{
        word-wrap: normal;
        word-break: normal;
        white-space: inherit;
        text-overflow: inherit;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }
    .new-posts-excerpt .content .meta{
        white-space: nowrap;
        word-break: break-all;
        word-wrap: break-word;
        text-overflow: ellipsis;
        overflow: hidden;
    }
    .new-posts-excerpt .content .meta span {
        margin-right: .5rem;
    }
    .new-posts-excerpt .content .author{
        display: none;
    }
    .new-posts-excerpt .content .desc{
        display: none;
    }
    .new-posts-excerpt .content .tag-more {
        display: none;
    }
}

/* 广告 # Advertisement*/
.ads{
    width: 100%;
    height: auto;
    max-height: 100px;
    overflow: hidden;
}
.ads a{
    display: block;
    width: 100%;
    height: 100%;
}
.ads img{
    display: block;
    max-width: 100%;
    max-height: 100%;
}

/* 分页 */
.pagination{
    position: relative;
    width: 100%;
    margin: 1.2rem auto;
}
.pagination a{
    text-decoration: none;
}
.pagination ul{
    display: block;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    white-space: nowrap;
    word-break: break-all;
    text-overflow: ellipsis;
    overflow: hidden;
}
.pagination ul li{
    display: inline-block;
    margin: 0 auto;
    list-style-type: none;
}
.pagination ul li span, .pagination ul li a{
    display: inline-block;
    margin: 0 3px;
    padding: 2px 12px;
    border-radius: 3px;
    font-size: 1rem;
    color: #555;
    background-color: #f1f1f1;
}
.pagination ul li.active span{
    color: #fff;
}
@media (max-width: 768px){
    .pagination ul li span, .pagination ul li a{
        padding: 0 7px;
    }
}
/* 加载更多 */
.loading-more{
    cursor: default;
    position: relative;
    overflow: hidden;
}
.loading-more button{
    outline: none;
    display: block;
    width: 100%;
    margin: 0 auto;
    padding: 1rem;
    border: 0;
    color: #777;
    background-color: #fff;
}
.loading-more button:hover{
    color: #24a0f0;
}


/* 浮动客服模块 */
/* .page-template-page_user_center .rollbar-kefu{
    display: none;
} */
.rollbar-kefu{
    z-index: 999999999;
    position: fixed;
    right: 20px;
    bottom: 100px;
}
.rollbar-kefu a{
    text-decoration: none;
    display: block;
    width: 100%;
    height: 100%;
    color: #24a0f0;
}
.rollbar-kefu ul.items{
    margin: 0 auto;
}
.rollbar-kefu .item{
    list-style: none;
    position: relative;
    width: 66px;
    height: 66px;
    margin: 0 auto;
    margin-top: 7px;
    border: 1px solid #24a0f0;
    border-radius: 5px;
    text-align: center;
    background: #fff;
}
.rollbar-kefu .item.top{
    display: none;
}
.rollbar-kefu .item .icon{
    position: relative;
    width: 100%;
    height: 100%;
    padding: 8px 0;
}
.rollbar-kefu .item .icon i{
    display: block;
    position: relative;
    transform: translateX(-50%);
    top: 0;
    left: 50%;
    width: 28px;
    height: 28px;
    margin-bottom: 4px;
    font-size: 1.8rem;
}
.rollbar-kefu .item.user .icon img{
    width: 100%;
    height: 100%;
    border-radius: 50%;
}
.rollbar-kefu .item .icon span{
    display: block;
    bottom: 0;
    height: 16px;
    line-height: 16px;
    font-size: 0.8rem;
}
.rollbar-kefu .item .popup{
    display: none;
    position: absolute;
    top: 0;
    right: 72px;
    min-width: 120px;
    height: auto;
    border: 1px solid #24a0f0;
    border-radius: 5px;
    padding: 5px;
    background-color: #fff;
}
.rollbar-kefu .item:hover .popup{
    display: block;
}
.rollbar-kefu .item .popup span{
    display: block;
    margin-bottom: 7px;
    padding: 3px 5px;
    font-size: 0.9rem;
    white-space: nowrap;
    word-break: break-all;
    text-overflow: ellipsis;
    overflow: hidden;
}
.rollbar-kefu .item .popup span:last-child{
    margin-bottom: 0;
}
@media(max-width: 768px){
    .rollbar-kefu{
        right: 0;
        bottom: 0;
        width: 100%;
        background-color: #fff;
    }
    .rollbar-kefu a{
        color: #555;
    }
    .rollbar-kefu .items{
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-around;
        width: 100%;
        height: 53px;
        border-top: 1px solid #eee;
    }
    .rollbar-kefu .item {
        width: 52px;
        height: 52px;
        margin: 0;
        border: none;
        background: none;
    }
    .rollbar-kefu .item .icon{
        padding: 7px 0;
    }
    .rollbar-kefu .item .icon i{
        width: 20px;
        height: 20px;
        margin-bottom: 2px;
    }
    .rollbar-kefu .item>a>.popup{
        position: fixed;
        top: auto;
        right: 0;
        bottom: 53px;
        width: 100%;
        border: none;
        border-radius: 0;
    }
    .rollbar-kefu .item .popup img{
        max-height: 100px;
    }
    .rollbar-kefu .item .popup span{
        font-size: 1.2rem;
    }
}

/* 登录弹窗相关样式 */
body.sign-show{
    height: 100%;
    width: 100%;
    overflow: hidden;
}
.sign-show .user-sign{
    opacity: 1.0;
    visibility: visible;
}
.sign-show .user-sign .content-wrapper{
    -webkit-transform: rotateX(-0deg) translateZ(0) translateY(0%);
    -moz-transform: rotateX(-0deg) translateZ(0) translateY(0%);
    -ms-transform: rotateX(-0deg) translateZ(0) translateY(0%);
    -o-transform: rotateX(-0deg) translateZ(0) translateY(0%);
    transform: rotateX(-0deg) translateZ(0) translateY(0%);
}
.user-sign {
    z-index: 999999999;
    cursor: pointer;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition:all 0.5s;
    -webkit-transition:all 0.3s;
    -moz-transition:all 0.3s;
    -ms-transition:all 0.3s;
    -o-transition:all 0.3s;
    perspective: 500px;
    -webkit-perspective: 500px;
    -moz-perspective: 500px;
    -ms-perspective: 500px;
    -o-perspective: 500px;
}
.user-sign .sign-mask{
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #000;
    opacity: 0.60;
}
.user-sign .sign-close{
    z-index: 999;
    display: block;
    position: absolute;
    right: 0;
    width: 20px;
    height: 60px;
    line-height: 60px;
    margin: 0 20px;
    font-size: 1.3rem;
    text-align: center;
    color: #555;
}
.user-sign .sign-close:hover{
    color:#24a0f0;
}
.user-sign .content-wrapper{
    z-index: 9;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 420px;
    height: 360px;
    margin: auto;
    background: #e7ebef;
    overflow: hidden;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    -webkit-transform: rotateX(-20deg) translateZ(200px) translateY(20%);
    -moz-transform: rotateX(-20deg) translateZ(200px) translateY(20%);
    -ms-transform: rotateX(-20deg) translateZ(200px) translateY(20%);
    -o-transform: rotateX(-20deg) translateZ(200px) translateY(20%);
    transform: rotateX(-20deg) translateZ(200px) translateY(20%);
}
.user-sign .content-wrapper .content{
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    background: none;
}
.user-sign .content .title{
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    line-height: 60px;
    padding-right: 60px;
    padding-left: 30px;
    background-color: #fff;
    overflow: hidden;
}
.user-sign .content .title h3{
    display: inline-block;
    margin: 0 auto;
    font-size: 1.3rem;
    font-weight: normal;
    color: #24a0f0;
}
.user-sign .content .title  small{
    cursor: pointer;
    float: right;
    font-size: 0.9rem;
    color: #bbb;
}
.user-sign .content form{
    position: relative;
    top: 0;
    left: 0;
    height: calc(100% - 60px);
    padding: 30px 50px;
}
.user-sign .content h6{
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: normal;
}
.user-sign .content input{
    outline: none;
}
.user-sign .content .form-control{
    box-shadow: none;
}
.user-sign .content .remember{
    display: inline-block;
    font-size: 0.8rem;
}
.user-sign .content .remember input{
    float: left;
    margin: 0;
    margin-right: 5px;
    margin-bottom: 1rem;
}
.user-sign .content .reset-pwd{
    float: right;
    margin-bottom: 1rem;
    font-size: 0.8rem;
}
.user-sign .content .reset-pwd a{
    color: #555;
}
.user-sign .content .sign-submit{
    outline: none;
    width: 100%;
    margin-top: 1rem;
    padding: 9px 15px;
    border: 0;
    color: #fff;
    background-color: #24a0f0;
    overflow: hidden;
}
.user-sign .content.signup .sign-submit{
    background-color: #f44336;
}
.user-sign .sign-tips{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 0;
    line-height: 30px;
    padding: 0 30px;
    font-size: 12px;
    color: #fff;
    background: #FD6E6E;
    overflow: hidden;
}
@media(max-width: 768px){
    .user-sign .content-wrapper{
        width: 360px;
        height: 330px;
    }
    .user-sign .sign-close{
        width: 20px;
        height: 50px;
        line-height: 50px;
        margin: 0 15px;
    }
    .user-sign .content .title {
        height: 50px;
        line-height: 50px;
        padding-right: 50px;
        padding-left: 20px;
    }
    .user-sign .content form{
        height: calc(100% - 50px);
        padding: 20px 40px;
    }
    .user-sign .content h6 {
        margin-bottom: 0.8rem;
    }
    .user-sign .content .reset-pwd{
        margin-bottom: 0.8rem;
    }
    .user-sign .content .sign-submit{
        margin-top: 0.8rem;
    }
}
@media(max-width: 480px){
    .user-sign .content-wrapper{
        width: 320px;
        height: 290px;
    }
    .user-sign .sign-close{
        width: 20px;
        height: 40px;
        line-height: 40px;
        margin: 0 20px 0 10px;
    }
    .user-sign .content .title {
        height: 40px;
        line-height:40px;
        padding-right: 60px;
        padding-left: 30px;
    }
    .user-sign .content form{
        height: calc(100% - 40px);
        padding: 20px 40px;
    }
    .user-sign .content h6 {
        margin-bottom: 0.7rem;
    }
    .user-sign .content .form-control{
        height: 30px;
    }
    .user-sign .content .reset-pwd{
        margin-bottom: 0.7rem;
    }
    .user-sign .content .sign-submit{
        margin-top: 0.7rem;
    }
}

/**==================== 通用组件样式结束 ====================**/


/**==================== 首页功能模块样式开始 ====================*/
/* 全屏轮播 */
.carousel-full-screen{
    position: relative;
    width: 100%;
    background-color: #fff;
    overflow: hidden;
}
.carousel-full-screen .bgImg{
    object-fit: cover;
    position: relative;
    width: 100%;
    height: 100%;
}
.carousel-full-screen .item{
    position: relative;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    overflow: hidden;
}
.carousel-full-screen .item .container{
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    width: 1366px;
    height: 100%;
    margin: 0 auto;
    padding: 20px;
}
.carousel-full-screen .item .item-poster{
    flex-basis: 50%;
    width: 100%;
    height: 100%;
    padding: 30px;
    overflow: hidden;
}
.carousel-full-screen .item .no-img .item-poster{
    display: none;
}
.carousel-full-screen .item .item-poster img{
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.carousel-full-screen .item .item-desc{
    flex-grow: 1;
    width: 40%;
    height: 100%;
    overflow: hidden;
}
.carousel-full-screen .item .no-img .item-desc{
    padding: 50px 100px;
    text-align: center;
}
.carousel-full-screen .item .desc-wrapper{
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.carousel-full-screen .item h2{
    height: 30px;
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: normal;
    color: #fff;
    text-overflow: ellipsis;
    word-break: break-all;
    word-wrap: break-word;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}
.carousel-full-screen .item p{
    margin: 15px auto;
    line-height: 20px;
    color: #eee;
    overflow: hidden;
    text-align: justify;
    text-overflow: ellipsis;
    word-break: break-all;
    word-wrap: break-word;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}
.carousel-full-screen .item .item-btns{
    margin-top: 30px;
}
.carousel-full-screen .item .item-btns a{
    font-weight: 700;
    font-size: 24px;
    margin-top: 400px;
    width: 134px;
    height: 50px;
    background-color: #448dff;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    margin-right: 10px;
    border: 1px solid #448dff;
    padding: 12px 12px;
    border-radius: 3px;
    color: #fff;
}
.carousel-full-screen .item .item-btns a:hover{
    color: #000;
    background: #448dff;
}
/* 分页器 */
.carousel-full-screen .navs{
    z-index: 999;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    height: 10px;
    line-height: 10px;
    bottom: 30px;
    text-align: center;
}
.carousel-full-screen .navs .swiper-pagination-bullet{
    height: 5px;
    width: 5px;
    border-radius: 3px;
    background: #fff;
    opacity: 0.6;
    filter: alpha(opacity=60);
}
.carousel-full-screen .navs .swiper-pagination-bullet-active{
    width: 25px;
    height: 5px;
    border-radius: 3px;
    opacity: 1;
    filter: alpha(opacity=100);
}
/* 上一页下一页 */
.carousel-full-screen  .swiper-button-prev{
    position: absolute;
    left: 30px;
    font-size: 36px;
    text-align: center;
    color: #fafafa;
    background-image: none;
    opacity: 0.36;
    filter: alpha(opacity=36);
}
.carousel-full-screen  .swiper-button-prev:hover{
    opacity: 1;
    filter: alpha(opacity=100);
}
.carousel-full-screen .swiper-button-next{
    position: absolute;
    right: 30px;
    font-size: 36px;
    text-align: center;
    color: #fafafa;
    background-image: none;
    opacity: 0.36;
    filter: alpha(opacity=36);
}
.carousel-full-screen .swiper-button-next:hover{
    opacity: 1;
    filter: alpha(opacity=100);
}

@media (max-width: 1366px) {
    .carousel-full-screen{
        height: 360px;
    }
    .carousel-full-screen .item .item-poster{
        padding: 40px;
    }
    .carousel-full-screen .item .item-desc{
        padding: 40px;
        padding-left: 0;
    }
    .carousel-full-screen  .swiper-button-prev{
        left: 20px;
    }
    .carousel-full-screen  .swiper-button-next{
        right: 20px;
    }
}
@media (max-width: 1024px) {
    .carousel-full-screen{
        height: 280px;
    }
    .carousel-full-screen .item .item-poster{
        display: none;
    }
    .carousel-full-screen .item .item-desc{
        padding: 10px 60px;
        text-align: center;
        margin-bottom: 15px;
    }
    .carousel-full-screen .item .no-img .item-desc{
        padding: 10px 60px;
    }
    .carousel-full-screen .item h2{
        font-size: 18px;
    }
    .carousel-full-screen .item .item-btns{
        margin-top: 20px;
    }
    .carousel-full-screen .navs{
        bottom: 20px;
    }
}
@media (max-width: 768px) {
    .carousel-full-screen{
        height: 200px;
    }
    .carousel-full-screen .item h2{
        height: auto;
        margin-bottom: 15px;
    }
    .carousel-full-screen .item p{
        margin: 10px auto;
        -webkit-line-clamp: 3;
    }
    .carousel-full-screen .item-btns{
        margin-bottom: 15px;
    }
    .carousel-full-screen  .swiper-button-prev{
        left: 10px;
    }
    .carousel-full-screen  .swiper-button-next{
        right: 10px;
    }
}
@media (max-width: 480px) {
    .carousel-full-screen{
        height: 140px;
    }
    .carousel-full-screen .item .container {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }
    .carousel-full-screen .item .item-desc{
        margin: 0;
        padding: 0;
    }
    .carousel-full-screen .item .no-img .item-desc {
        padding: 0;
    }
    .carousel-full-screen .item .desc-wrapper {
        top: 0;
        left: 0;
        transform: translate(0, 0);
    }
    .carousel-full-screen .item h2{
        position: absolute;
        top: 0;
        left: 0;
        margin: 0 auto;
        padding: 5px;
        font-size: 1rem;
        background-color: #a61e1ecc;
    }
    .carousel-full-screen .item p{
        display: none;
    }
    .carousel-full-screen .item .item-btns {
        display: none;
        margin-top: 0;
        padding-top: 60px;
    }
    .carousel-full-screen  .swiper-button-prev{
        display: none;
    }
    .carousel-full-screen  .swiper-button-next{
        display: none;
    }
}

/* 推荐盒子 */
.topic-card-box{
    width: 100%;
}
.topic-card-box a{
    text-decoration: none;
}
.topic-card-box a:hover{
    opacity: 0.8;
}
.topic-card-box .items{
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    margin: 0 auto;
}
.topic-card-box .item{
    flex-basis: 24%;
    list-style-type: none;
    margin: 0;
    text-align: center;
    background: #fff;
    overflow: hidden;
}
.topic-card-box .item .focus{
    position: relative;
    width: 100%;
    height: 88px;
    overflow: hidden;
}
.topic-card-box .item .focus:hover .mask{
    opacity: 0.4;
}
.topic-card-box .item .focus:hover img{
    transform: scale(1.2);
}
.topic-card-box .item .focus .mask{
    z-index: 9;
    position: absolute;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.36;
}
.topic-card-box .item .focus img{
    transition-duration:0.5s;
    width: 100%;
    height: 100%;
}
.topic-card-box .item .focus h4{
    z-index: 99;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0 auto;
    font-size: 24px;
    font-weight: normal;
    color: #fff;
    text-overflow: ellipsis;
    word-wrap: break-word;
    white-space: nowrap;
    overflow: hidden;
}
.topic-card-box .item p{
    margin: 10px 20px;
    line-height: 1.2rem;
    text-align: center;
    word-wrap: break-word;
    text-overflow: ellipsis; 
    overflow: hidden;    
}
.topic-card-box .item p b{
    display: block;
    font-size: 1rem;
    font-weight: bold;
    color: #333;
    word-wrap: break-word;
    word-break: break-all;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.topic-card-box .item p i{
    font-size: 0.8rem;
    color: #999;
    text-overflow: ellipsis;
    word-wrap: break-word;
    word-break: break-all;
    white-space: nowrap;
    overflow: hidden;
}
@media (max-width: 1024px) {
    .topic-card-box .item{
        flex-basis: 49%;
    }
    .topic-card-box .item:first-child{
        margin-bottom: 1.2rem;
    }
    .topic-card-box .item:nth-child(2){
        margin-bottom: 1.2rem;
    }
    .topic-card-box .item p{
        line-height: 1.5rem;
    }
    .topic-card-box .item p b{
        font-size: 1.1rem;
    }
    .topic-card-box .item p i{
        font-size: 1rem;
    }
}
@media (max-width: 480px) {
    .topic-card-box .item:first-child{
        margin-bottom: 0.8rem;
    }
    .topic-card-box .item:nth-child(2){
        margin-bottom: 0.8rem;
    }
    .topic-card-box .item .focus{
        height: 66px;
    }
}

/* 图像盒子 */
.img-box-posts{
    background: #fff;
    overflow: hidden;
}
.img-box-posts .item:first-child{
    width: 50%;
    padding-bottom: 28%;
}
.img-box-posts .item{
    float: left;
    position: relative;
    width: 25%;
    height: 0;
    padding-bottom: 14%;
}
.img-box-posts .item a{
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border: 5px solid #fff;
}
.img-box-posts a img{
    object-fit: cover;
    transition-duration:0.5s;
    width: 100%;
    height: 100%;
}
.img-box-posts a .mask{
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #fff;
    background: #000;
    opacity: 0.36;
    filter: alpha(opacity=36);
}
.img-box-posts a .info{
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    align-items: center;
}
.img-box-posts a .info h4{
    display: flex;
    align-items: center;
    position: relative;
    width: 90%;
    height: 85%;
    margin: 0 auto;
    border: 1px solid #fff;
    padding: 10px;
    font-size: 1rem;
    font-weight: normal;
    text-align: center;
    vertical-align: middle;
    color: #fff;
    overflow: hidden;
}
.img-box-posts a .info h4 b{
    display: block;
    width: 100%;
    max-height: 40px;
    line-height: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
    word-wrap: break-word;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.img-box-posts a:hover .mask{
    display: block;
}
.img-box-posts a:hover img{
    transform: scale(1.2);
}
.img-box-posts a:hover .info{
    display: flex;
}
@media (max-width: 1024px) {
    .img-box-posts{
        height: 280px;
    }
    .img-box-posts a:first-child{
        height: 280px;
    }
    .img-box-posts a{
        margin: 0 0 10px 1%;
    }
}
@media (max-width: 768px) {
    .img-box-posts{
        height: 200px;
    }
    .img-box-posts a:first-child{
        height: 200px;
    }
    .img-box-posts a{
        margin: 0 0 5px 1%;
    }
}
@media (max-width: 480px){
    .img-box-posts{
        height: 140px;
    }
    .img-box-posts a:first-child{
        height: 140px;
    }
    .img-box-posts a{
        margin: 0 0 5px 1%;
    }
    .img-box-posts a .info h4{
        font-size: 10px;
        padding: 5px;
    }
    .img-box-posts a .info h4 b{
        max-height: 28px;
        line-height: 14px;
    }
}

/** 文章列表双栏样式 1 **/
.posts-2column-s1{
    cursor: default;
    position: relative;
    width: 100%;
    background: #fff;
    overflow: auto;
}
.posts-2column-s1 a{
    transition-duration: .5s;
    color: inherit;
}
.posts-2column-s1 .content-wrapper{
    float: left;
    position: relative;
    width: 50%;
    padding: 0 15px;
    background: #fff;
}
.posts-2column-s1 .content-wrapper:first-child:after{
    content: " ";
    z-index: 9;
    position: absolute;
    right: -1px;
    top: calc(3rem + 10px);
    width: 2px;
    height: calc(100% - 3rem - 30px);
    background: #aaa;
}
.posts-2column-s1 .title{
    width: 100%;
    height: 3rem;
}
.posts-2column-s1 .title h3{
    margin: 0 auto;
    padding: 10px;
    border-bottom: 2px solid #eee;
    font-size: 1.2rem;
    font-weight: normal;
}
.posts-2column-s1 .content{
    width: 100%;
    margin: 0 auto;
}
.posts-2column-s1 .content ul{
    margin: 0 auto;
    padding: 10px 10px 15px;
}
.posts-2column-s1 .content ul li{
    list-style-type: none;
    margin: 0 auto;
    font-size: 1rem;
    word-wrap: break-word;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.posts-2column-s1 .content ul li .lable{
    display: inline-block;
    margin: 0 5px 4px 0;
    width: 1.2rem;
    height: 1.2rem;
    line-height: 1.2rem;
    border-radius: 2px;
    font-size: 0.8rem;
    color: #fff;
    background: #aaa;
    vertical-align: middle;
    text-align: center;
}
.posts-2column-s1 .content ul li .lable-1{
    background: #ff0740;
}
.posts-2column-s1 .content ul li .lable-2{
    background: #24a0f0;
}
.posts-2column-s1 .content ul li .lable-3{
    background: #00b424;
}
.posts-2column-s1 .content ul li .meta{
    float: right;
    font-size: 0.8rem;
    color: #555;
}
@media (max-width: 768px){
    .posts-2column-s1 .content ul li .meta{
        display: none;
    }
}
@media (max-width: 480px){
    .posts-2column-s1 .content-wrapper{
        float: none;
        width: 100%;
        padding: 0 10px;
    }
    .posts-2column-s1 .content-wrapper:first-child:after{
        display: none;
    }
    .posts-2column-s1 .content ul:first-child{
        padding: 10px;
    }
    .posts-2column-s1 .content ul li .meta{
        display: block;
    }
}

/** 文章列表双栏样式 2 **/
.posts-2column-s2{
    cursor: default;
    position: relative;
    width: 100%;
    overflow: auto;
}
.posts-2column-s2 a{
    transition-duration: .5s;
    color: inherit;
}
.posts-2column-s2 .content-wrapper{
    float: left;
    position: relative;
    width: calc(50% - 0.7rem);
    padding: 0 15px;
    background: #fff;
}
.posts-2column-s2 .content-wrapper:last-child{
    float: right;
}
.posts-2column-s2 .title{
    width: 100%;
    height: 3rem;
}
.posts-2column-s2 .title h3{
    margin: 0 auto;
    padding: 10px;
    border-bottom: 2px solid #eee;
    font-size: 1.2rem;
    font-weight: normal;
}
.posts-2column-s2 .content{
    width: 100%;
    margin: 0 auto;
}
.posts-2column-s2 .content ul{
    margin: 0 auto;
    padding: 10px 10px 15px;
}
.posts-2column-s2 .content ul li{
    list-style-type: none;
    position: relative;
    line-height: 1.8rem;
    margin: 0 auto;
    font-size: 1rem;
    word-wrap: break-word;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.posts-2column-s2 .content ul li a{
    margin-left: 35px;
}
.posts-2column-s2 .content ul li .thumbnail{
    transition-duration: .5s;
    display: inline-block;
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    height: 18px;
    width: 27px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 3px;
}
.posts-2column-s2 .content ul li .meta{
    float: right;
    font-size: 0.8rem;
    color: #555;
}
@media (max-width: 768px){
    .posts-2column-s2 .content ul li .meta{
        display: none;
    }
}
@media (max-width: 480px){
    .posts-2column-s2 .content-wrapper{
        float: none;
        width: 100%;
        padding: 0 10px;
    }
    .posts-2column-s2 .content-wrapper:last-child{
        margin-top: 0.8rem;
    }
    .posts-2column-s2 .content ul li .meta{
        display: block;
    }
}

/**==================== 首页功能模块样式结束 ====================*/


/**==================== 特殊页面样式开始 ====================*/
/** 404 页 */
.not-found{
    cursor: default;
    margin: 80px auto;
    text-align: center;
    color: #555;
}
.not-found h1{
    margin: 3rem 0 1rem;
    font-size: 4rem;
    font-weight: normal;
}
.not-found h3{
    font-size: 1.5rem;
    font-weight: normal;
}
.not-found .back{
    text-decoration: none;
    display: inline-block;
    margin: auto;
    margin-top: 1rem;
    padding: 9px 30px;
    color: #fff;
    background-color: #24a0f0;
}
.not-found .back:hover{
    opacity: 0.6;
}

/* 作者页 */
.author-title{
    cursor: default;
    padding: 1.2rem 3rem;
    background: #fff;
}
.author-title .avatar{
    width: 50px;
    height: 50px;
    margin: 0 auto;
    border: 1px solid #fafafa;
    border-radius: 50%;
    overflow: hidden;
}
.author-title .name{
    line-height: 1.5rem;
    margin: 10px auto;
    font-size: 1.2rem;
    font-weight: normal;
    text-align: center;
    color: #24a0f0;
}
.author-title .desc{
    line-height: 1.2rem;
    font-size: 0.9rem;
    text-align: center;
    color: #999;
    overflow: hidden;
    text-indent: 0;
    word-wrap: break-word;
    word-break: break-word;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}
@media (max-width: 768px){
    .author-title{
        padding: 1rem 2rem;
    }
    .author-title .avatar {
        width: 40px;
        height: 40px;
    }
    .author-title .name{
        margin: 5px auto;
    }
}
@media (max-width: 480px){
    .author-title{
        padding: 1rem;
    }
}

/* 搜索页 */
.search-title h1{
    cursor: default;
    margin: 0 auto;
    padding-left: 1rem;
    font-size: 1.2rem;
    font-weight: normal;
}
.search-title i{
    float: left;
}
.search-title span{
    margin: 0 10px;
    color: #24a0f0;
}
.search-title small{
    margin-left: 5px;
}

/** 标签页 */
.tag-title h1{
    cursor: default;
    margin: 0 auto;
    padding-left: 1rem;
    font-size: 1.2rem;
    font-weight: normal;
}
.tag-title i{
    float: left;
    margin: 0 10px;
}
.tag-title span{
    color: #00A0F0;
}
.tag-title small{
    margin-left: 5px;
}

/**==================== 特殊页面样式结束 ====================*/


/**==================== 文章/页面共用模块开始 ====================*/

/* 分页 */
.link-pages-wrapper{
    cursor: default;
    width: 100%;
    height: 30px;
    text-align: center;
}
.link-pages-wrapper a{
    display: inline-block;
    border-radius: 3px;
    color: inherit;
    background: #eee;
}
.link-pages-wrapper a:hover{
    background-color: #ccc;
}
.link-pages-wrapper .current{
    border-radius: 3px;
    color: #fff;
    background: #333;
}
.link-pages-wrapper span{
    display: inline-block;
    width: 28px;
    height: 28px;
    line-height: 28px;
    font-size: 0.9rem;
}

/* 多重分类筛选 */
.category-filter{
    cursor: default;
    width: 100%;
    height: auto;
    padding: 1rem 1.5rem;
    background-color: #fff;
}
.category-filter ul{
    list-style: none;
    margin: 0;
}
.category-filter li{
    margin: 0;
    white-space: nowrap;
    overflow-x: scroll;
    overflow-y: hidden;
}
.category-filter li::-webkit-scrollbar{
    display: none;
}
.category-filter strong{
    margin-right: 3px;
    font-weight: bold;
}
.category-filter a{
    text-decoration: none;
    display: inline-block;
    width: 3.5rem;
    line-height: 1;
    margin: 3px;
    padding: 3px;
    border: 1px solid transparent;
    font-size: 1rem;
    text-align: center;
    color: inherit;
}
.category-filter a.active{
    border-radius: 5px;
    border-color: #24a0f0;
    color: #24a0f0;
}
@media (max-width: 768px){
    .category-filter strong{
        margin-right: 2px;
    }
    .category-filter a{
        margin: 2px 0;
        padding: 2px;
    }
}

/* 作者信息面板 */
.post-author-pannel{
    height: 80px;
    padding: 10px 15px;
    overflow: hidden;
}
.post-author-pannel a{
    color: #333;
}
.post-author-pannel a:hover{
    color: #24a0f0;
}
.post-author-pannel .avatar-wrapper{
    float: left;
    padding: 5px;
}
.post-author-pannel .avatar{
    width: 50px;
    height: 50px;
    border: 1px solid #eee;
    border-radius: 50%;
}
.post-author-pannel .content-wrapper{
    float: none;
    width: auto;
    margin-left: 66px;
    height: 60px;
}
.post-author-pannel .title{
    margin: 0 auto;
    height: 20px;
}
.post-author-pannel .title span{
    float: right;
    font-size: 0.8rem;
}
.post-author-pannel .title h4{
    display: inline-block;
    line-height: 20px;
    margin: 0 auto;
    font-size: 1rem;
    font-weight: bolder;
}
.post-author-pannel .desc{
    height: 40px;
}
.post-author-pannel .desc p{
    margin: 6px 0 0;
    line-height: 17px;
    font-size: 0.8rem;
    color: #999;
    text-align: justify;
    text-overflow: ellipsis;
    word-wrap: break-word;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

/* 版权申明 */
.post-copyright{
    cursor: default;
    position: relative;
    width: 100%;
    overflow: hidden;
}
.post-copyright .content-wrapper{
    margin-top: -1rem;
}
.post-copyright .title{
    z-index: 99;
    position: relative;
    top: 1rem;
    text-align: center;
}
.post-copyright .title span{
    display: inline-block;
    width: auto;
    padding: 0 20px;
    border-radius: 5px;
    background: #eaeaea;
    font-size: 1rem;
    line-height: 1.5rem;    
}
.post-copyright .title span:hover{
    background: #001818;
    color: #fff;
}
.post-copyright .content-wrapper .content{
    margin: 0 auto;
    padding: 15px 20px;
    color: #999;
    background: #f5f5f5;
}
.post-copyright .content a{
    color: #24A0F0;
}
.post-copyright .content a:hover{
    opacity: 0.8;
}
.post-copyright .content p{
    line-height: 1rem;
    margin-top: 7px;
    margin-bottom: 0;
    font-size: 0.9rem;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.post-copyright .content p span{
    font-weight: bolder;
    color: #555;
}
@media (max-width: 1024px){
    .post-copyright .content p{
        margin-top: 5px;
    }
}
@media (max-width: 768px){
    .post-copyright .content p{
        margin-top: 3px;
    }
}

/* 分享点赞打赏 */
.share-like-reward{
    cursor: default;
    position: relative;
    line-height: 24px;
    font-size: 0.9rem;
    overflow: hidden;
}
/* 分享 */
.share-like-reward .post-share{
    float: left;
    height: 24px;
    overflow: hidden;
}
.share-like-reward .post-share span{
    float: left;
}
.share-like-reward .post-share a{
    display: inline-block;
    height: 24px;
    width: 24px;
    background-size: cover;
}
.share-like-reward .post-share a.share-qzone{
    background-position-x: 0px;
    background-position-y: 0px;
}
.share-like-reward .post-share a.share-qq{
    background-position-x: 0px;
    background-position-y: -32px;
}
.share-like-reward .post-share a.share-wechat{
    background-position-x: 0px;
    background-position-y: -64px;
}
.share-like-reward .post-share a.share-weibo{
    background-position-x: 0px;
    background-position-y: -128px;
}
.share-like-reward .post-qrcode-mask{
    z-index: 999999;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.36;
}
.share-like-reward .post-qrcode{
    z-index: 999999999;
    display: none;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 200px;
    height: 200px;
    padding: 1rem;
    border: 1px solid #999;
    border-radius: 5px;
    background: #fff;
}
.share-like-reward .post-qrcode canvas{
    width: 100%;
    height: 100%;
}
/* 右侧 */
.share-like-reward .like-reward-poster{
    float: right;
    position: relative;
    height: 24px;
}
/* 喜欢 */
.share-like-reward .post-like{
    display: inline-block;
    height: 100%;
    margin: 0 5px;
    border: 1px solid #ff0000;
    padding: 0 7px;
    border-radius: 5px;
    font-size: 0.9rem;
    text-align: center;
    line-height: 22px;
}
.share-like-reward .post-like a{
    color: #ff0000;
}
/* 打赏 */
.share-like-reward .post-reward{
    display: inline-block;
    height: 100%;
    height: 24px;
    margin: 0 5px;
    border: 1px solid #24a0f0;
    padding: 0 7px;
    border-radius: 5px;
    font-size: 0.9rem;
    text-align: center;
    line-height: 22px;
}
.share-like-reward .post-reward a{
    color: #24a0f0;
}
.share-like-reward .rewards-popover-mask{
    z-index: 999;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}
.share-like-reward .rewards-popover-box{
    z-index: 9999;
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 520px;
    height: 360px;
    margin: auto;
    padding: 30px 25px 50px;
    border-radius: 5px;
    text-align: center;
    background-color: #fff;
    overflow: hidden;
}
.share-like-reward .rewards-popover-box h3{
    margin: 0 15px 20px;
    font-size: 1.3rem;
    text-align: center;
}
.share-like-reward .rewards-popover-item{
    display: inline-block;
    width: 180px;
    margin: 0 20px;
}
.share-like-reward .rewards-popover-item h4{
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}
.share-like-reward .rewards-popover-item img{
    width: 180px;
    height: 180px;
    padding: 0.5rem;
    background-color: #eee;
}
.share-like-reward .rewards-popover-close{
    position: absolute;
    top: 0;
    right: 0;
    margin-top: 15px;
    margin-right: 20px;
    font-size: 1rem;
    color: #999;
    cursor: pointer;
}
.share-like-reward .rewards-popover-close:hover{
    color: #555;
}
/* 海报 */
.share-like-reward .post-poster{
    display: inline-block;
    height: 100%;
    height: 24px;
    margin: 0 5px;
    border: 1px solid #03b303;
    padding: 0 7px;
    border-radius: 5px;
    font-size: 0.9rem;
    text-align: center;
    line-height: 22px;
}
.share-like-reward .post-poster a{
    color: #03b303;
}
.share-like-reward .poster-popover-mask{
    display: none;
    z-index: 999;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #00000066;
}
.share-like-reward .poster-popover-box{
    display: none;
    z-index: 999;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 330px;
    height: 530px;
    margin: auto;
    border: 0;
    border-radius: 9px;
    padding: 15px;
    background: #fafafa;
    overflow: hidden;
}
.share-like-reward .poster-popover-box img{
    width: 100%;
    height: 100%;
}
.share-like-reward .poster-popover-box a{
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    border: 0;
    border-radius: 5px;
    padding: 5px 9px;
    width: 100px;
    height: 30px;
    color: #fff;
}
@media (max-width: 768px){
    .share-like-reward .post-share{
        height: 20px;
        line-height: 20px;
    }
    .share-like-reward .post-share a{
        height: 20px;
        width: 20px;
    }
    .share-like-reward .post-share a.share-qq{
        background-position-y: -27px;
    }
    .share-like-reward .post-share a.share-wechat{
        background-position-y: -53px;
    }
    .share-like-reward .post-share a.share-weibo{
        background-position-y: -107px;
    }
    .share-like-reward .post-like{
        height: 20px;
        margin: 0 3px;
        padding: 0 5px;
        border-radius: 3px;
        line-height: 18px;
    }
    .share-like-reward .post-reward{
        height: 20px;
        margin: 0 3px;
        padding: 0 5px;
        border-radius: 3px;
        line-height: 18px;
    }
    .share-like-reward .rewards-popover-box{
        width:380px;
        height: 260px;
        padding: 20px 10px 25px;
        border-radius: 4px;
    }
    .share-like-reward .rewards-popover-close{
        margin-top: 5px;
        margin-right: 10px;
    }
    .share-like-reward .rewards-popover-box h3{
        margin: 0 10px 20px;
    }
    .share-like-reward .rewards-popover-item{
        width: 140px;
        margin: 0 10px;
    }
    .share-like-reward .rewards-popover-item h4{
        margin: 0 10px 5px;
    }
    .share-like-reward .rewards-popover-item img{
        width: 140px;
        height: 140px;
        border-radius: 0;
        padding: 3px;
    }
    .share-like-reward .post-poster{
        height: 20px;
        margin: 0 3px;
        padding: 0 5px;
        border-radius: 3px;
        line-height: 18px;
    }
    .share-like-reward .poster-popover-box{
        width: 240px;
        height: 380px;
        border-radius: 5px;
        padding: 10px;
    }
    .share-like-reward .poster-popover-box a{
        border-radius: 3px;
        padding: 5px 15px;
    }
}
@media (max-width: 480px){
    .share-like-reward .post-share{
        float: none;
        height: 20px;
    }
    .share-like-reward .like-reward-poster{
        display: block;
        margin: 5px 0 0;
        border: 0;
        padding: 0;
        overflow: hidden;
    }
    .rewards-popover-box{
        width: 280px;
        margin: -100px 0 0 -140px;
        padding: 10px 5px 15px;
        border-radius: 3px;
    }
    .rewards-popover-box h3{
        margin: 0 5px 10px;
        font-size: 14px;
    }
    .rewards-popover-close {
        padding: 10px;
        font-size: 14px;
    }
    .rewards-popover-item{
        width: 120px;
        margin: 0 5px;
    }
    .rewards-popover-item h4{
        margin: 0 5px 3px;
        font-size: 12px;
        font-weight: normal;
    }
    .rewards-popover-item img{
        width: 120px;
        height: 120px;
    }
}

/** ==================== Erphpdown 样式美化 ==================== */
/* 下载面板 */
#erphpdown {
    display: block;
    position: relative;
    width: auto;
    height: auto;
    margin: 20px 0 0;
    border: 1px dashed #24b4f0;
    padding: 10px 15px;
    border-radius: 9px;
    line-height: 1.5;
    text-align: left;
    text-indent: 0;
    overflow: hidden;
}
#erphpdown h3 {
    margin: 5px 0px 10px 0px;
    border-left: 3px solid #03a9f4;
    padding: 0px 10px;
    font-size: 20px;
    font-weight: bold;
    color: #03a9f4;
}
#erphpdown .erphpdown-price{
    margin: 0;
    border: 0;
    padding: 0 5px;
    color: #e14d43;
    font-weight: bold;
    font-size: 120%;
}
#erphpdown .erphpdown-tips{
    clear: both;
    margin: 10px 0 0;
    border: 0;
    padding: 0;
    font-size: 13px;
    opacity: 0.6;
}
#erphpdown .erphpdown-buy{
    display: inline-block;
    margin: 0 10px;
    border: 0;
    padding: 3px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 13px;
    color: #fff;
    background: #4cc361;
}
#erphpdown .erphpdown-vip{
    display: inline-block;
    margin: 0 10px;
    border: 0;
    padding: 3px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 13px;
    color: #fff;
    background: #ff5f33;
}
#erphpdown .erphpdown-down{
    display: inline-block;
    margin: 0 10px;
    border: 0;
    padding: 3px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 13px;
    color: #fff;
    background: #03A9F4;
}
#erphpdown .erphpdown-item{
    float: left;
    width: auto;
    height: auto;
    margin: 5px 10px 5px 0;
    border: 0;
    padding: 0 10px;
    border-radius: 5px;
    background: #03A9F4;
}
#erphpdown .erphpdown-item a{
    color: #fff;
}
#erphpdown .erphpdown-item .erphpdown-down{
    display: inline-block;
    margin: 0;
    border: 0;
    padding: 3px 5px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 13px;
    color: #fff;
    background: #03A9F4;
}
#erphpdown .erphp-login-must {
    display: inline-block;
    margin: 0 10px;
    border: 0;
    padding: 3px 5px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 13px;
    color: #fff;
    background: #ff5f33;
}
#erphpdown .epdvip {
    display: block;
    position: absolute;
    right: -45px;
    top: -20px;
    width: 120px;
    height: 24px;
    line-height: 24px;
    background: #ff5e52;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    transform: rotate(36deg);
    transform-origin: 0% 0%;
}
#erphpdown-content-vip {
    padding: 5px 10px;
    text-align: center;
    border: 2px dashed #ff5f33;
    color: #ff5f33;
}
#erphpdown-paybox {
    font-family:'Microsoft Yahei','Sans-serif';
    font-size:14px;
}
#erphpdown-paybox a {
    text-decoration:none;
}
.erphpdown-btn {
    padding:4px 10px;
    background:#ff5f33;
    color:#FFF;
    border-radius:2px;
}
.erphpdown-table {
    font-size:14px;
    color:#333;
}
.erphpdown-table td {
    line-height:30px;
}
.erphpdown-table td span {
    color:#999;
}
/** 下载页面 */
.erphpdown-body {
    display: block;
    position:relative;
    margin:0;
    border: 0;
    padding:0;
    background: #fff;
    overflow: hidden;
}
#erphpdown-download {
    display: block;
    width: 800px;
    height: auto;
    margin: 30px auto 0;
    border: 1px solid #eee;
    padding: 0 0 8px;
    border-radius: 3px;
    font-family: 'Microsoft Yahei','Sans-serif';
    font-size: 15px;
    color: #999;
}
#erphpdown-download img {
    width:100%;
    height: auto;
}
#erphpdown-download .title {
    clear: both;
    display: block;
    width: auto;
    height: 25px;
    margin: 10px 0;
    border: 0;
    border-left: 5px solid #24a0f0;
    padding: 0;
    line-height: 25px;
    font-size: 16px;
    font-weight: bold;
    background: #fafafa;
}
#erphpdown-download .title span {
    display: inline-block;
    position: relative;
    margin: 0;
    border: 0;
    padding: 0;
    color: #777;
}
#erphpdown-download .title span:before {
    position:absolute;
    content:'';
    top: 12px;
    left: -60px;
    width: 50px;
    height: 1px;
    background: #999;
}
#erphpdown-download .title span:after {
    position:absolute;
    content:'';
    top: 12px;
    right: -60px;
    width: 50px;
    height: 1px;
    background: #999;
}
#erphpdown-download a {
    text-decoration: none;
    color: #24a0f0;
}
.erphpdown-msg .title {
    font-size:16px;
    color:#333;
    font-weight:600;
    margin-bottom:20px;
}
#erphpdown-download p {
    display: block;
    margin: 0;
    border: 0;
    padding: 5px 30px;
    font-size: 15px;
    line-height: 1.5em;
    text-align: justify;
}
#erphpdown-download .msg p {
    float: left;
    display: block;
    margin: 5px 0 15px 15px;
    padding: 0;
}
#erphpdown-download .msg .link {
    display: inline-block;
    margin: 0 10px;
    border: 0;
    padding: 3px 15px;
    border-radius: 5px;
    font-size: 13px;
    color: #fff;
    background: #24a0f0;
}
#erphpdown-download .msg .hidden-content {
    display: block;
    margin: 0;
    border: 0!important;
    padding: 10px 30px!important;
    font-size: 15px;
    text-align: left;
    overflow: hidden;
}
#erphpdown-download ul {
    display: block;
    margin: 10px 30px;
    border: 0;
    padding: 0;
    list-style: disc;
    overflow: hidden;
}
#erphpdown-download ul li {
    width: auto;
    height: auto;
    line-height: 20px;
    font-size: 15px;
    text-align: left;
    list-style-position: inside;
    list-style-type: disc;
}
#erphpdown-download-copyright {
    display: block;
    width: 100%;
    height: auto;
    margin: 20px auto;
    font-size: 13px;
    text-align: center;
    color: #999
}
#erphpdown-download-copyright a {
    text-decoration: none;
    color: #777;
}

/**==================== 文章/页面共用模块结束 ====================*/
